home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1997 #1
/
Amiga Plus CD - 1997 - No. 01.iso
/
pd
/
programmierung
/
installproged
/
sasc_support
/
projectsmakefile.script
< prev
next >
Wrap
Text File
|
1996-03-11
|
900b
|
43 lines
;*******************************************
;*
;* Project create SMakefile
;* by Giovanni Lambiase (C) 1995
;*
;* This script create a standard SMakefile
;* for your project.
;*
;*******************************************
FailAt 30
; Put project directory in $PROJDIR
ProgED:SASC_Support/GetProjectDir
; Empty project ?
IF WARN
ECHO "Empty project!"
ECHO ""
ECHO "Press return to continue..."
ProgED:SASC_Support/ReturnWait
ELSE
; CD in $PROJDIR
CD "$PROJDIR"
; If PROGRAMNAME missing then ERROR!
ProgED:SASC_Support/GetSASCOption PROGRAMNAME
IF WARN
ECHO "PROGRAMNAME option missing! Please specify!"
ELSE
; Ask user if he wants a gst file created from "PreInclude.c"
ASK "Do you want to use a GST file ?"
; If yeah
IF WARN
ProgED:SASC_Support/CreateSMakeFile $Option $Option.GST PreInclude.c
ELSE
ProgED:SASC_Support/CreateSMakeFile $Option
ENDIF
ENDIF
ENDIF